All Questions
Tagged with algorithm-analysispure-function
1 question
2votes
4answers
3kviews
What is Big-O notation for purely functional languages?
Is it still relevant? Instead of var result = new List<int>(); for (var i = 0; i < prev.Count; ++i) { result.Add(prev[i] * 2); } where the result.Add, prev[i], and * 2 instructions are ...